home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997 September / Macworld (1997-09).dmg / Serious Software / Cherwell Scientific Demos / pro Fit / pro Fit 5.0 demo (68k).sea / pro Fit 5.0.1 demo (68k).rsrc / STR#_1008.txt < prev    next >
Encoding:
Text File  |  1996-09-30  |  6.4 KB  |  184 lines

  1. Rounds its argument to the next integer value.
  2.  
  3. Returns a random number.
  4.  
  5. The return value of a  user-defined function.
  6. y = f(x) is the function value at x.
  7.  
  8. A parameter of a user-defined function.
  9. i is the parameter index.
  10.  
  11. The partial derivative of a user-defined function with respect to its parameter a[i].
  12. Must be set in the predefined procedure 'Derivatives'.
  13.  
  14. The fitting mode of parameter.
  15. i is the parameter index.
  16. mode[i]=active, inactive, constant.
  17. Can be set by the predefined function 'Check'
  18.  
  19. Exponential function (base e).
  20.  
  21. Exponential function (base 10).
  22.  
  23. Square root.
  24. Sqrt(Sqr(r))=Abs(r).
  25.  
  26. Logical constant. false=0.
  27.  
  28. Parameter fitting mode.
  29. Set mode[i]=inactive to indicate that parameter i is not fitted by default.
  30.  
  31. Parameter fitting mode.
  32. Set mode[i]=constant to indicate that parameter i cannot be fitted.
  33.  
  34. Return value for the predefined function 'Check'.
  35. Set Check=bad to indicate that the new value of parameter number 'pNumber' is not to be accepted.
  36.  
  37. Return value for the predefined function 'Check'.
  38. Set Check=update to indicate that the new value of parameter number 'pNumber' is to be accepted and the parameter window must be redrawn.
  39. Use 'update' if you change other parameters in 'Check'.
  40.  
  41. Displays an alert box with the given text, and a 'yes' and 'no' button. Returns true if 'yes' was clicked and 'false' if 'no' was clicked.
  42.  
  43. Displays an alert box with the given text.
  44.  
  45. Displays a dialog box to read in up to 6 values. If a var parameter is preceded by a name that starts with '$C'/'$W', a column/window menu is created. Use '$P..$' for a custom menu, '$X' for a check box. Example:
  46. Input('$CColumn',c,'Time', t);
  47.  
  48. Sets the title of the dialog box that is invoked with the next call to 'Input'.
  49.  
  50. Produces an alert sound.
  51.  
  52. Writes text and numbers to the Results window or to a text file. Write accepts strings and numbers as parameters. Example:
  53. Write('the value of x is ',x,' Watts');
  54.  
  55. Same as 'Write', but starts a new line after writing the given text.
  56.  
  57. Draws a data point at the coordinate (x,y).
  58.  
  59. Same as 'write', but a new line is started after the text is written to the results window.
  60.  
  61. Declaration of the predefined procedure 'Initialize'.
  62.  
  63. Declaration of the predefined procedure 'Last'.
  64.  
  65. Sets the default position and size used for a new graph created by 'CreateNewGraph'.
  66.  
  67. Moves the pen to the given coordinates.
  68.  
  69. Draws a line to the given coordinate.
  70.  
  71. Starts the definition of a polygon.
  72. smooth= smoothing type, 0..2 (0=not smoothed). Set closed=true for closed polygons.
  73. Define the polygon using move,moveto,line,lineto.
  74.  
  75. Terminates the definition of a polygon.
  76.  
  77. Draws a single line starting at (x1,y1) and ending at (x2,y2).
  78.  
  79. Draws a rectangle.
  80.  
  81. Draws an oval.
  82.  
  83. Draws a data point symbol at the coordinate (x,y).
  84.  
  85. Sets the fill pattern.
  86. i=fill pattern index, 0..39 (0=no pattern, 1=white).
  87.  
  88. Sets the fill color.
  89. R,G,B are the color components, 0..65535.
  90.  
  91. Sets the line style.
  92. thick=thickness in points, 0<thick<=50. i=dash pattern index, 1..12.
  93.  
  94. Sets the line color.
  95. R,G,B are the color components, 0..65535.
  96.  
  97. Sets the arrow style.
  98. pos=position of the arrow on its line, 1..3 (1=start, 2=end, 3=both sides).
  99. i=arrow index, 0..12 (0=no arrow).
  100. size=size in pts, 1..128.
  101.  
  102. Sets the foreground data point style.
  103. i=data point index, -8..17 (0=pixel, 1..13=row in style menu, 14..17=composite styles, -1..-8=custom point styles.
  104. size=size in pts, 2..128.
  105. thick=line thickness, 0.25, 0.5 or 1.0 pts.
  106.  
  107. Sets the background data point style (see 'SetDataPointStyle'.)
  108.  
  109. Sets the text drawing style.
  110. The first parameter is the name of the font.
  111. size=text size in pts, 3..48.
  112. style=text style, a sum of the constants bold, italic, underline, outline, shadow, condense, extend.
  113.  
  114. Sets the filling style for the next curve created using 'OpenCurve'.
  115. ax = xAxis or yAxis.
  116. i=axis index.
  117.  
  118. Sets the error bar style for the next data set created using 'OpenDataSet'.
  119. Cl,Ct,Lt = cap length, cap thickness, and line thickness in pts.
  120. Use Cl=-1 for default length, Cl=-1 to draw error boxes.
  121.  
  122. Starts the definition of a new curve in the current graph.
  123. The curve name you pass to this procedure is used in the legend.
  124.  
  125. Terminates a curve definition.
  126.  
  127. Adds (dx,dy) to the current coordinates.
  128.  
  129. Draws a line with the given length, starting from the current coordinates.
  130.  
  131. Draws the given text at the current drawing position.
  132. angle=rotation angle, 0,90,180,270 degrees.
  133. Set center=true to center the text on the current drawing position.
  134.  
  135. Converts a number to a text, and draws it at the current drawing postion.
  136. decs=number of digits after the decimal point.
  137. angle=rotation angle, 0,90,180,270 degrees.
  138. Set center=true to center the text on the current drawing position.
  139.  
  140. Disables redrawing of the data window while your program is running.
  141. This will make your program faster.
  142.  
  143. Returns the coordinates of the last clicked point within the current drawing window.
  144.  
  145. An array for storing global values common to all functions and programs.
  146. 0<=i<100.
  147.  
  148. Lets your hardware read the given text aloud.
  149.  
  150. Sets the title displayed in pro Fit's progress window during lengthy operations.
  151.  
  152. Sets the text displayed in pro Fit's progress window during lengthy operations. Accepts six strings as parameters. The six strings are positioned in a 3x2 arrangement.
  153.  
  154. Creates a text file to which you can write with 'Write' and 'Writeln'.
  155. Returns the file ID.
  156. Call 'WriteToTextFile' to redirect the output of 'Write' and 'Writeln' to this file.
  157.  
  158. Redirects the output from 'Write' and 'Writeln'to the given file (ID=fileID) or to the Results window (ID=0).
  159.  
  160. Closes the given text file and redirects the output of 'Write' and 'Writeln' to the Results window.
  161.  
  162. Returns true if the mouse button is currently held down.
  163.  
  164. Returns true if the given keyboard key is currently held down. key=(optionKey, commandKey, shiftKey, controlKey)
  165.  
  166. Returns the x-coordinate of the Preview window marker with the given index.
  167.  
  168. Returns the y-coordinate of the Preview window marker with the given index.
  169.  
  170. Returns the x- and y-coordinates of the Preview window marker with the given index.
  171.  
  172. Sets the format of the labels of the current x- or y- axis.
  173. ax=xAxis or yAxis.
  174. i=number format, -1=auto, 0=decimal,1=exponential, any other number is used as a fixed exponent.
  175. decs=number of digits after the decimal point.
  176.  
  177. Starts the definition of a group.
  178. It is possible to build a hierarchy of groups by bracketing calls to GroupBegin and GroupEnd.
  179.  
  180. Terminates the definition of a group.
  181.  
  182. Terminates the definition of a data set.
  183.  
  184.